home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / game / pr / src / filekh.h next >
Text File  |  1995-04-14  |  161b  |  8 lines

  1. /*
  2.     File 操作用ヘッダ
  3. */
  4.  
  5. #define    getShort(_s,_f)    _s=(getc(_f))*0x100+(getc(_f))
  6. #define    putShort(_s,_f)    {putc((_s)/0x100,(_f));putc((_s)%0x100,(_f));}
  7.  
  8.